home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Special 17 / AMIGAplus Sonderheft 17 (1999)(ICP)(DE)[!].iso / devs / MountList < prev    next >
Text File  |  1994-04-14  |  1KB  |  53 lines

  1. /* MountList for V1.3 */
  2.  
  3. /*  Mount Entry for the new Console Handler */
  4.  
  5. NEWCON: 
  6.     Handler = L:Newcon-Handler
  7.     Priority = 5
  8.     StackSize = 1000
  9. #
  10.  
  11. /* This is an example of a non-filing system mount using a handler written
  12.    in C.
  13. */
  14.  
  15. SPEAK:     
  16.     Handler = L:Speak-Handler
  17.     Stacksize = 6000
  18.     Priority = 5
  19.     GlobVec = -1
  20. #
  21.  
  22. /*  This is an example of an alternative type of non-filing device mount,
  23.     used to mount the non-buffered serial handler
  24. */
  25.  
  26. AUX:
  27.     Handler = L:Aux-Handler
  28.     Stacksize = 1000
  29.     Priority = 5
  30. #
  31. /*  This is a non-filing system device */
  32.  
  33. PIPE:      
  34.     Handler = L:Pipe-Handler
  35.     Stacksize = 6000
  36.     Priority = 5
  37.     GlobVec = -1
  38. #
  39.  
  40. DM0:
  41.        Device           = devs:dms.device
  42.        Unit             = 0
  43.        Flags              = 0
  44.        Surfaces         = 2
  45.        BlocksPerTrack   = 11
  46.        Reserved         = 2
  47.        Interleave       = 0
  48.        LowCyl             = 0
  49.        HighCyl          = 79
  50.        Buffers          = 5
  51.        BufMemType       = 1
  52. #
  53.